gtkwindow: css offset for toplevel only
authorOlivier Fourdan <ofourdan@redhat.com>
Tue, 10 Nov 2015 11:00:48 +0000 (12:00 +0100)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 10 Nov 2015 17:35:23 +0000 (12:35 -0500)
At the time gtk_window_move() or gtk_window_resize() get called, there
is no way to predict if a popup window will actually draw its shadow, so
applying an offset in this case may end up with a wrong size or
positioning for such windows.

Changing the logic in gtk_window_should_use_csd() as previously done to
address that issue will cause some other breakage as popup windows may
not draw a shadow but still need CSD.

So best is to actually apply client side decorations offset for regular,
top level windows only. This is actually a lot simpler and safer and
less likely to cause additional breakage.

Bugzilla: https://bugzilla.gnome.org/show_bug.cgi?id=756618

gtk/gtkwindow.c

index a76ea04d3b6fc079753a5feeaedb1aac5726ff5c..b52a2fafeba1a28d522f861a5b57a4c235c2f88b 100644 (file)
@@ -5243,6 +5243,9 @@ gtk_window_update_csd_size (GtkWindow *window,
   GtkWindowPrivate *priv = window->priv;
   GtkBorder window_border = { 0 };
 
+  if (priv->type != GTK_WINDOW_TOPLEVEL)
+    return;
+
   if (priv->decorated &&
       !priv->fullscreen)
     {
@@ -5453,7 +5456,11 @@ gtk_window_translate_csd_pos (GtkWindow *window,
 {
   GtkWindowPrivate *priv = window->priv;
 
-  if (priv->decorated)
+  if (priv->type != GTK_WINDOW_TOPLEVEL)
+    return;
+
+  if (priv->decorated &&
+      !priv->fullscreen)
     {
       GtkBorder window_border = { 0 };
       gint title_height = 0;
@@ -6000,18 +6007,15 @@ gtk_window_should_use_csd (GtkWindow *window)
   GtkWindowPrivate *priv = window->priv;
   const gchar *csd_env;
 
+  if (priv->csd_requested)
+    return TRUE;
+
   if (!priv->decorated)
     return FALSE;
 
   if (priv->type == GTK_WINDOW_POPUP)
     return FALSE;
 
-  if (priv->csd_requested)
-    return TRUE;
-
-  if (priv->use_client_shadow)
-    return TRUE;
-
 #ifdef GDK_WINDOWING_BROADWAY
   if (GDK_IS_BROADWAY_DISPLAY (gtk_widget_get_display (GTK_WIDGET (window))))
     return TRUE;